Fix an aliasing problem. (#347585, Ed Catmur)
authorMatthias Clasen <mclasen@redhat.com>
Thu, 22 Nov 2007 05:50:32 +0000 (05:50 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Thu, 22 Nov 2007 05:50:32 +0000 (05:50 +0000)
2007-11-22  Matthias Clasen  <mclasen@redhat.com>

        * gtk/gtktextiter.c: Fix an aliasing problem.  (#347585, Ed Catmur)

svn path=/trunk/; revision=19024

ChangeLog
gtk/gtktextiter.c

index 8619f33f0e995993791ea897b8da8c00d148e50a..681846b42ef2c537f82d4a24ef0c5a99873d2e60 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-11-22  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtktextiter.c: Fix an aliasing problem.  (#347585, Ed Catmur)
+
 2007-11-21  Richard Hult  <richard@imendio.com>
 
        * gdk/quartz/Makefile.am: * gdk/quartz/gdktestutils-quartz.c: Add
index 5ab52dc130c7c91e3fac6ca934a75d56b8573521..7d74096038fb06a93a0347e0936682d48d14d45b 100644 (file)
@@ -38,7 +38,7 @@
 
 typedef struct _GtkTextRealIter GtkTextRealIter;
 
-struct _GtkTextRealIter
+struct G_GNUC_MAY_ALIAS _GtkTextRealIter
 {
   /* Always-valid information */
   GtkTextBTree *tree;